home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Examples / Text / Include / TextUtil.h < prev    next >
Encoding:
Text File  |  1994-04-21  |  1.1 KB  |  41 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                            TextUtil.h
  4. //    Release Version:    $ 1.0d1 $
  5. //
  6. //    Author:                        Anthone Burbidge
  7. //    Creation Date:        3/28/94
  8. //
  9. //    Copyright:    © 1993, 1994 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13. #ifndef _TEXTUTIL_
  14. #define _TEXTUTIL_
  15.  
  16. // ----- Framework Includes -----
  17.  
  18. #ifndef FWGC_H
  19. #include "FWGC.h"
  20. #endif
  21.  
  22. //===================================================================================================
  23. // Forward class declarations
  24. //===================================================================================================
  25.  
  26. class CTextFacet;
  27.  
  28.  
  29. //===================================================================================================
  30. // CLASS CTextDrawInitiator
  31. //===================================================================================================
  32.  
  33. class CTextDrawInitiator : public FW_CGraphicContext
  34. {
  35. public:
  36.     CTextDrawInitiator(CTextFacet *facet, XMPShape* clipShape = NULL);
  37.     virtual ~CTextDrawInitiator();
  38. };
  39.  
  40. #endif
  41.